home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / util / libs / PGPLib1_3.lha / PGP / include / c / clib / pgp_protos.h
C/C++ Source or Header  |  1998-01-10  |  742b  |  28 lines

  1. #ifndef  CLIB_PGP_PROTOS_H
  2. #define  CLIB_PGP_PROTOS_H
  3.  
  4. /*
  5. **  clib/pgp_protos.h
  6. **
  7. **  $VER: pgp_protos.h 1.1 (10.1.98)
  8. **
  9. */
  10.  
  11. #ifndef  EXEC_TYPES_H
  12. #include <exec/types.h>
  13. #endif
  14.  
  15.  
  16. LONG PGPEncrypt      (STRPTR filename,STRPTR userid,struct TagItem *tags);
  17. LONG PGPEncryptTags  (STRPTR filename,STRPTR userid,ULONG tag1item,...);
  18.  
  19. LONG PGPDecrypt      (STRPTR filename,STRPTR password,struct TagItem *tags);
  20. LONG PGPDecryptTags  (STRPTR filename,STRPTR password,ULONG tag1item,...);
  21.  
  22. LONG PGPFault        (LONG code,STRPTR header,STRPTR buffer,LONG len);
  23.  
  24. LONG PGPSign         (STRPTR filename,STRPTR password,struct TagItem *tags);
  25. LONG PGPSignTags     (STRPTR filename,STRPTR password,ULONG tag1item,...);
  26.  
  27. #endif   /* CLIB_PGP_PROTOS_H */
  28.